documentation: Fix JAR versions in other container installation The commands to unpack the JARs for commons pool and H2 JDBC driver were incorrect, as the versions didn't match what is currently in the server archive. Bug: issue 533 Change-Id: I1244fddf6d7fdd815a3867c5ccabc8b378751dd1 Signed-off-by: Shawn O. Pearce <sop@google.com>
diff --git a/Documentation/install-j2ee.txt b/Documentation/install-j2ee.txt index 3233b4d..d51ba68 100644 --- a/Documentation/install-j2ee.txt +++ b/Documentation/install-j2ee.txt
@@ -77,8 +77,8 @@ ---- cp ../review_db/lib/* lib/ext/ java -jar webapps/gerrit.war cat lib/commons-dbcp-1.2.2.jar >lib/ext/commons-dbcp-1.2.2.jar - java -jar webapps/gerrit.war cat lib/commons-pool-1.5.3.jar >lib/ext/commons-pool-1.5.3.jar - java -jar webapps/gerrit.war cat lib/h2-1.2.122.jar >lib/ext/h2-1.2.122.jar + java -jar webapps/gerrit.war cat lib/commons-pool-1.5.4.jar >lib/ext/commons-pool-1.5.4.jar + java -jar webapps/gerrit.war cat lib/h2-1.2.128.jar >lib/ext/h2-1.2.128.jar java -jar webapps/gerrit.war cat lib/postgresql-8.4-701.jdbc4.jar >lib/ext/postgresql-8.4-701.jdbc4.jar ----